home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / dalla rivista / host contacted / jikes.lha / jikes-1.11 / src / javadef.h < prev    next >
C/C++ Source or Header  |  2000-01-16  |  1KB  |  56 lines

  1. // $Id: javadef.h,v 1.11 1999/10/17 02:02:12 shields Exp $
  2. //
  3. // This software is subject to the terms of the IBM Jikes Compiler
  4. // License Agreement available at the following URL:
  5. // http://www.ibm.com/research/jikes.
  6. // Copyright (C) 1996, 1998, International Business Machines Corporation
  7. // and others.  All Rights Reserved.
  8. // You must accept the terms of that agreement to use this software.
  9. //
  10. #ifndef javadef_INCLUDED
  11. #define javadef_INCLUDED
  12.  
  13. enum {
  14.       ERROR_CODE,
  15.       BEFORE_CODE,
  16.       INSERTION_CODE,
  17.       INVALID_CODE,
  18.       SUBSTITUTION_CODE,
  19.       DELETION_CODE,
  20.       MERGE_CODE,
  21.       MISPLACED_CODE,
  22.       SCOPE_CODE,
  23.       MANUAL_CODE,
  24.       SECONDARY_CODE,
  25.       EOF_CODE,
  26.  
  27.       ERROR_SYMBOL      = 107,
  28.       MAX_DISTANCE      = 30,
  29.       MIN_DISTANCE      = 3,
  30.       MAX_NAME_LENGTH   = 38,
  31.       MAX_TERM_LENGTH   = 38,
  32.       NUM_STATES        = 560,
  33.  
  34.       NT_OFFSET         = 108,
  35.       BUFF_UBOUND       = 31,
  36.       BUFF_SIZE         = 32,
  37.       STACK_UBOUND      = 127,
  38.       STACK_SIZE        = 128,
  39.       SCOPE_UBOUND      = 56,
  40.       SCOPE_SIZE        = 57,
  41.       LA_STATE_OFFSET   = 5532,
  42.       MAX_LA            = 2,
  43.       NUM_RULES         = 355,
  44.       NUM_TERMINALS     = 108,
  45.       NUM_NON_TERMINALS = 159,
  46.       NUM_SYMBOLS       = 267,
  47.       START_STATE       = 978,
  48.       EOFT_SYMBOL       = 96,
  49.       EOLT_SYMBOL       = 27,
  50.       ACCEPT_ACTION     = 5176,
  51.       ERROR_ACTION      = 5177
  52.      };
  53.  
  54.  
  55. #endif /* javadef_INCLUDED */
  56.